home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20031118-20041115 / 000205_Petri_member@newsguy.com_Wed Apr 14 08:28:22 2004.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Path: newsmaster.cc.columbia.edu!iad-feed.news.verio.net!peer1.stngva01.us.to.verio.net!news.verio.net!news.maxwell.syr.edu!pln-e!spln!dex!extra.newsguy.com!newsp.newsguy.com!drn
  2. From: Petri <Petri_member@newsguy.com>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: FTP with Auth SSL
  5. Date: 14 Apr 2004 00:50:59 -0700
  6. Organization: Newsguy News Service [http://newsguy.com]
  7. Lines: 91
  8. Message-ID: <c5iqh301eie@drn.newsguy.com>
  9. References: <c5bv8301ck0@drn.newsguy.com> <4079f047@duster.adelaide.on.net> <407AE97A.7080007@nyc.rr.com> <c5gdqd02fhg@drn.newsguy.com> <slrnc7nth9.39k.fdc@sesame.cc.columbia.edu> <c5h61m01t8d@drn.newsguy.com> <407C24F7.1000905@nyc.rr.com>
  10. NNTP-Posting-Host: p-012.newsdawg.com
  11. X-Newsreader: Direct Read News 4.20
  12. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14919
  13.  
  14. In article <407C24F7.1000905@nyc.rr.com>, Jeffrey Altman says...
  15. > Petri wrote:
  16. >> If I want a kermit with the works, what do I do?
  17. >> I see a lot of stuff having to be added into the makefile.
  18.  
  19. > I do not understand what the issue is:
  20.  
  21. >    make redhat9
  22.  
  23. > and you are done.
  24.  
  25. Duh... Thanks.
  26. Sorry if I seem dense. :(
  27. It was all explained in the makefile.
  28.  
  29. I ran 'make clean' and 'make redhat9'.
  30. Got a lot of similar looking warnings, these are the first:
  31. ---8<---
  32. ckuath.c:230:1: warning: "des_fixup_key_parity" redefined
  33. In file included from /usr/include/openssl/des.h:101,
  34.                  from ckuath.c:213:
  35. /usr/include/openssl/des_old.h:432:1: warning: this is the location of the
  36. previous definition
  37. ckuath.c: In function `auth_send':
  38. ckuath.c:3156: warning: passing arg 1 of `DES_key_sched' from incompatible
  39. pointer type
  40. ---8<---
  41.  
  42. But no errors, so maybe the warning messages can be ignored.
  43.  
  44. When I use this binary, everything works.
  45.  
  46. If you are curious, I get these messages when running with 'set auth tls debug
  47. on':
  48. During login:
  49. ---> AUTH TLS 
  50. 234 AUTH TLS successful
  51. TLS accepted as authentication type
  52. SSL DEBUG ACTIVE
  53. =>START SSL/TLS connect on COMMAND
  54. SSL_handshake:UNKWN  before/connect initialization
  55. SSL_connect:UNKWN  before/connect initialization
  56. SSL_connect:3WCH_A SSLv3 write client hello A
  57. SSL_connect:3RSH_A SSLv3 read server hello A
  58. ssl:client_verify_callback:depth=0 ok=0 err=18-self signed certificate
  59. ssl:client_verify_callback => ok: 1
  60. ssl:client_verify_callback:depth=0 ok=1 err=18-self signed certificate
  61. ssl:client_verify_callback => ok: 1
  62. SSL_connect:3RSC_A SSLv3 read server certificate A
  63. SSL_connect:3RSKEA SSLv3 read server key exchange A
  64. SSL_connect:3RSD_A SSLv3 read server done A
  65. SSL_connect:3WCKEA SSLv3 write client key exchange A
  66. SSL_connect:3WCCSA SSLv3 write change cipher spec A
  67. SSL_connect:3WFINA SSLv3 write finished A
  68. SSL_connect:3FLUSH SSLv3 flush data
  69. SSL_connect:3RFINA SSLv3 read finished A
  70. SSL_handshake:SSLOK  SSL negotiation finished successfully
  71. [TLS - DHE-DSS-AES256-SHA      SSLv3 Kx=DH       Au=DSS  Enc=AES(256)  Mac=SHA1
  72. Compression: None
  73. =>DONE SSL/TLS connect on COMMAND
  74.  
  75. After 'ftp dir':
  76. =>START SSL connect on DATA
  77. SSL_handshake:UNKWN  before/connect initialization
  78. SSL_connect:UNKWN  before/connect initialization
  79. SSL_connect:3WCH_A SSLv3 write client hello A
  80. SSL_connect:3RSH_A SSLv3 read server hello A
  81. SSL_connect:3RFINA SSLv3 read finished A
  82. SSL_connect:3WCCSA SSLv3 write change cipher spec A
  83. SSL_connect:3WFINA SSLv3 write finished A
  84. SSL_connect:3FLUSH SSLv3 flush data
  85. SSL_handshake:SSLOK  SSL negotiation finished successfully
  86. =>DONE SSL connect on DATA
  87. ... (dir output) ...
  88. SSL_read_alert
  89. SSL_write_alert
  90.  
  91. Last line after 'exit':
  92. SSL_write_alert
  93.  
  94.  
  95. Well, everything work for me anyway. :)
  96. The measures I took were OpenSSL upgrade via up2date, and upgrade of kermit from
  97. 2.0.206 to 2.0.211.
  98. Some or both of them solved the problem.
  99.  
  100. Thank you so much for your kind help and patience with me. :)
  101.  
  102.  
  103. Petri
  104.